筆者發現我的電腦硬體相當弱,如果想要用兩個區塊去連結後挖礦,電腦放一天後也是無法運算,因此今天以Ethereum開發鏈做展示。
開啟終端機,輸入 geth --datadir ./.ethereum/devent --dev console。
之後查看預設帳號的餘額 eth.getBalance(eth.accounts[0])。
然後創建一個新帳號,輸入 personal.newAccount(),之後輸入兩次密碼。
接著轉帳,輸入 eth.sendTransaction({from: eth.coinbase, to eth.accounts[1], value: web3, toWei(0.05, "ether")}) 。